@charset "UTF-8";

/* ====================================
 * Reset
 *
 ==================================== */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

li,
ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #505050;
}

body {
  font-family: 'Source Han Sans CN', Arial, Helvetica, Tahoma, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #505050;
  background: #fff;
}

/* ====================================
 * keyframes
 *
 ==================================== */
@-webkit-keyframes scrolldown {
  0 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes scrolldown {
  0 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes txt-anim {
  to {
    background-position-x: 200%;
  }
}

@keyframes txt-anim {
  to {
    background-position-x: 200%;
  }
}

/* ====================================
 * Common
 *
 ==================================== */
html {
  position: relative;
  background: #99a0aa;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

a {
  -webkit-transition: all .25s ease 50ms;
  transition: all .25s ease 50ms;
}

/*
 * main
 */
.main-contents {
  width: 100%;
  max-width: 1730px;
  margin: 0 auto;
}

/* ====================================
 * footer
 *
 ==================================== */
.footer {
  padding: 70px 5vw;
  background: #99a0aa;
  text-align: center;
  color: #fff;
}

.footer .compy {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}

.footer a.compy {
  display: inline-block;
  line-height: 1;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.footer a.compy:hover {
  border-color: #ffc400;
}

.footer a:hover {
  color: #ffc400;
}

.footerlinks {
  margin-top: 30px;
}

.footerlink {
  color: #fff;
  font-size: 12px;
}

.footerlink--icp {
  position: relative;
  margin-left: 10px;
  padding-left: 25px;
}

.footerlink--icp:before {
  content: '';
  background: url(/images/logo_icp.png) no-repeat 0 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ====================================
 * header
 *
 ==================================== */
.header {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all .25s ease 50ms;
  transition: all .25s ease 50ms;
  width: 100%;
}

.header.active {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__inner {
  width: 100%;
  max-width: 1730px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 40px 32px;
}

.header__inner .menu-trigger-sp {
  display: none;
}

.header .logo-img {
  display: block;
  line-height: 1;
}

.header .common-nav a {
  display: block;
  font-size: 16px;
  line-height: 1.63;
  color: #505050;
  margin-right: 30px;
  position: relative;
  font-weight: bold;
}

.header .common-nav a:before {
  background-color: #ffc400;
  bottom: -7px;
  content: '';
  display: block;
  height: 4px;
  position: absolute;
  right: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.84, 0.09, 0.2, 0.95);
  transition: width 0.4s cubic-bezier(0.84, 0.09, 0.2, 0.95);
  width: 0;
}

.header .common-nav li:last-child a {
  margin-right: 0;
}

/* ====================================
 * Utility Classes
 *
 ==================================== */

.u-none {
  display: none !important;
}

.u-align-left {
  text-align: left !important;
}

.u-align-right {
  text-align: right !important;
}

.u-align-center {
  text-align: center !important;
}

.u-bold {
  font-weight: 600;
}

.u-ls0 {
  letter-spacing: 0;
}

.u-relative {
  position: relative;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.fontcolorgray {
  color: #707070 !important;
}

img {
  border: 0 none;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

.container-fluid {
  width: 100%;
  position: relative;
}

.dpflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mgb-60 {
  margin-bottom: 60px;
}

.mgb-1em {
  margin-bottom: 1em;
}

.mgb-05em {
  margin-bottom: .5em;
}

.over-hidden {
  overflow: hidden;
}

.mgcenter {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-box {
  padding: 0 !important;
}

.btn:before {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(0, #ffd602), to(#ff5500));
  background-image: -webkit-linear-gradient(right, #ffd602 0, #ff5500 100%);
  background-image: linear-gradient(270deg, #ffd602 0, #ff5500 100%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  transition: -webkit-transform 0.4s cubic-bezier(0.84, 0.09, 0.2, 0.95);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.84, 0.09, 0.2, 0.95);
  transition: transform 0.4s cubic-bezier(0.84, 0.09, 0.2, 0.95);
  transition: transform 0.4s cubic-bezier(0.84, 0.09, 0.2, 0.95), -webkit-transform 0.4s cubic-bezier(0.84, 0.09, 0.2, 0.95);
  width: 100%;
}

.btn:hover {
  color: #fff;
}

.btn:hover:before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.btn:hover svg path {
  stroke: #fff !important;
}

.btn:hover div {
  color: #fff !important;
}

.btn a,
.btn path {
  -webkit-transition: all .25s ease 50ms;
  transition: all .25s ease 50ms;
}

.btn.-back {
  text-align: center;
  margin: 80px auto;
  display: block;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 40px 20px 20px;
  width: 100%;
  max-width: 300px;
  position: relative;
  line-height: 1.3;
}

.btn.-back span {
  position: relative;
  z-index: 2;
}

.btn.-back svg {
  position: absolute;
  width: 30px;
  height: 9px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.btn.-inline {
  margin-bottom: 0;
}

.businessSummary .businessSummary-content-img {
  width: 91%;
  margin-bottom: 36px;
}

.businessSummary .businessSummary-content>p {
  padding-right: 10vw;
}

.businessSummary .businessSummary-content .spec-word {
  padding-right: 0;
  margin-bottom: 60px;
}

.businessSummary .businessSummary-info {
  padding: 33px 130px 33px 58px;
  background: #f4f4f4;
  margin-top: 30px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 254px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.businessSummary .businessSummary-info .dpflex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.businessSummary .businessSummary-info .show-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  margin-right: 40px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.businessSummary .businessSummary-info .show-img>img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.businessSummary .businessSummary-info h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 500;
}

.privacypolicy p {
  line-height: 2em;
}

.privacypolicy .contents__body>p>a {
  color: #ffc400;
  text-decoration: underline;
}

.privacypolicy .contents__body>p>a:hover {
  border-bottom: 1px solid #ffc400;
  text-decoration: underline;
}

.childprivacypolicy p {
  line-height: 2em;
}

.childprivacypolicy .contents__body>p>a {
  color: #ffc400;
  text-decoration: underline;
}

.childprivacypolicy .contents__body>p>a:hover {
  border-bottom: 1px solid #ffc400;
  text-decoration: underline;
}

.contents {
  padding: 0 0 0 40px;
  margin-top: 40px;
}

.contents.-center {
  padding: 0 40px;
}

.contents.-center .contents__inner {
  padding-left: 0;
}

.contents__inner {
  padding-left: 86px;
}

.companyprofile-show-img .show-img {
  margin-bottom: 20px;
  min-width: 375px;
}

.companyprofile-show-img .show-img>img {
  width: 100%;
  padding-right: 5%;
}

.contents__inner.-align-center {
  text-align: center;
}

.contents__title {
  border-top: 2px solid #ccd1e2;
  padding: 40px 0;
  position: relative;
  font-size: 30px;
  font-weight: 500;
}

.contents__title:before {
  content: '';
  display: block;
  width: 25%;
  height: 4px;
  background: #ffc400;
  position: absolute;
  top: -2px;
  left: 0;
}

.contents__title-en {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.contents__title--text {
  padding-top: 20px;
}

.contents__lead {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
}

.contents__body {
  margin-left: 25%;
}

.contents__body--spOnly {
  margin-left: 0;
}

.contents__body>p+p {
  margin-top: 1em;
}

.contents__body2 {
  margin-left: 0%;
}

.contents__body2--spOnly {
  margin-left: 0;
}

.contents__body2>p+p {
  margin-top: 1em;
}

.contents ol {
  counter-reset: num;
}

.contents ol>li {
  position: relative;
  padding-left: 1em;
}

.contents ol>li::before {
  counter-increment: num;
  content: counter(num) ".";
  display: block;
  position: absolute;
  left: 0;
}

.footerInfo {
  margin: 5vw 0;
}

.footerInfo .contents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footerInfo .contents__inner>div {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: calc((330 / 1280) * 100vw);
  flex-basis: calc((330 / 1280) * 100vw);
  min-width: 100px;
  position: relative;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}

.footerInfo .contents__inner>div:first-of-type {
  margin-right: 20px;
}

.footerInfo .contents__inner>div:last-of-type {
  margin-left: 20px;
}

.footerInfo .contents__inner>div svg {
  position: absolute;
  width: 30px;
  height: 9px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.footerInfo .contents__inner>div svg path {
  -webkit-transition: all .25s ease 50ms;
  transition: all .25s ease 50ms;
}

.footerInfo .contents__inner>div h3 {
  font-size: 2vw;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.footerInfo .contents__inner>div h3 span {
  font-size: 1vw;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
}

.footerInfo .contents__inner>div>a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.footerInfo .contents__inner>div>div {
  padding: 2vw 3vw;
  color: #505050;
  -webkit-transition: all .25s ease 50ms;
  transition: all .25s ease 50ms;
}

.thumbInfo {
  margin-bottom: 41px;
}

.thumbInfo .contents__inner>ul {
  display: flex;
  align-items: center;
  justify-content: center;

}

.thumbInfo .contents__inner>ul>li:nth-child(1) {
  margin-right: 40px;
}

.thumbInfo .contents__inner>ul>li>a>img {
  width: 70px;
  height: 70px;
  margin-right: 30px;
  display: block;
}

.info-list li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  border-top: 1px solid #ccd1e2;
  padding: 20px 20px 30px 20px;
}

.info-list li:last-child {
  border-bottom: 1px solid #ccd1e2;
}

.info-list li:first-child {
  border-top: none;
}

.info-list-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  max-width: 230px;
}

.info-list-right .dpflex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.new-list li {
  margin-bottom: 15px;
}

.new-list li:last-child {
  margin-bottom: 0 !important;
}

.new-list .new-category {
  margin-right: 20px;
}

.new-list .new-date {
  display: inline-block;
  margin-right: 20px;
}

.new-list a {
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}

.new-list .pdf:after {
  content: 'PDF';
  font-size: 12px;
  display: inline-block;
  border: 1px solid #505050;
  padding: 1px 3px;
  border-radius: 3px;
  margin-left: 5px;
  color: #505050;
}

/* ====================================
 * 下層ページページタイトル
 *
 ==================================== */
.page-header__inner {
  padding: 60px 90px 20px;
}

.page-header__inner--pt0 {
  padding-top: 0;
}

.page-header__title {
  font-size: 50px;
  font-weight: 500;
}

.page-header__title2 {
  font-size: 30px;
  font-weight: 1500;
}

.page-header__title span {
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.page-header__title2 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
}

/* ====================================
 * 下層ページ共通
 *
 ==================================== */
.page .main-contents {
  padding-top: 100px;
}

.page .contents {
  padding: 0 90px;
}

.page .contents__inner {
  padding: 0;
}

.page__deco {
  background: url(/images/monsterball.png) no-repeat;
}

.page__deco--philosophy {
  background-position: right top 116px;
}

.philosophy .contents__inner {
  background: url(/images/monsterball.png) no-repeat right top 47px;
  padding-bottom: 80px;
}

.philosophy .philosophy-content h3 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
}

.philosophy .philosophy-content p {
  font-size: 20px;
}

.page .philosophySecondary {
  padding-bottom: 120px;
}

.philosophySecondary p {
  font-size: 20px;
}

/* ====================================
 * 404
 *
 ==================================== */
.page-404 .contents__inner {
  padding: 120px 0 150px;
}

.page-404 .page-title {
  font-size: 20rem;
  color: #CCD1E2;
  line-height: 1;
}

.page-404 .page-title span {
  font-size: 2.4rem;
  color: #505050;
  line-height: 1.08;
  margin-top: 20px;
  display: block;
}

/*
 * Top Main Visual
 */
.mv {
  height: 100vh;
  position: relative;
}

.mv__inner {
  width: 100%;
  height: 100%;
  padding: 100px 70px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mv__title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: calc((703 / 1280) * 100vw);
  flex-basis: calc((703 / 1280) * 100vw);
  white-space: nowrap;
  max-width: 970px;
  margin: -40px 0 0;
}

.mv__title h2 .cn {
  color: #ff5500;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ffd602), color-stop(50%, #ff5500), to(#ffd602)) 0 center/200% auto;
  background: -webkit-linear-gradient(left, #ffd602 0, #ff5500 50%, #ffd602 100%) 0 center/200% auto;
  background: linear-gradient(to right, #ffd602 0, #ff5500 50%, #ffd602 100%) 0 center/200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-weight: 800;
  line-height: 1.2;
  font-size: calc((90 / 1280) * 100vw);
  -webkit-animation: txt-anim 4s linear infinite;
  animation: txt-anim 4s linear infinite;
  overflow: hidden;
  display: block;
}

.mv__title h2 .packing {
  letter-spacing: -40px;
}

.mv__title h2 .en {
  font-size: calc((42 / 1280) * 100vw);
  font-weight: 600;
  display: block;
  margin-top: 40px;
  line-height: 1;
}

.mv__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: calc((420 / 1280) * 100vw);
  flex-basis: calc((420 / 1280) * 100vw);
  max-width: 620px;
}

.mv .scrolldown {
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: .5vw;
  bottom: 80px;
  cursor: pointer;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.mv .scrolldown svg {
  height: 9px;
  width: 30px;
  display: inline-block;
  margin-left: 10px;
  -webkit-animation: scrolldown 2s linear infinite;
  animation: scrolldown 2s linear infinite;
}

.submitCheck {
  margin-top: 40px;
  padding: 0 10px;
}

.submitCheck p>a {
  color: #1e80ff;
  margin-bottom: 10px;
}

.submitCheck p>a:hover {
  border-bottom: 1px solid #1e80ff;
}

/* ====================================
 * news
 *
 ==================================== */
.contents.news .contents__inner {
  position: relative;
}

.contents.news .contents__title {
  padding-bottom: 0;
}

.contents.news .contents__inner .news_item {
  position: absolute;
  top: 25%;
  border: 0;
}

.newsCenter-content {
  margin-left: 66px
}

.news_list {
  border-top: 1px solid #CFD3E3;
}

.news_item {
  height: 101px;
  line-height: 101px;
  border-bottom: 1px solid #CFD3E3;
  display: flex;
  align-items: center;
}




.news_item .news_item_banner {
  width: 100%;
  height: auto;
}


.news_item .news_item_time {
  font-weight: 500;
  font-size: 20px;
  color: #999999;
  letter-spacing: 0;
  margin-right: 58px;
}

.news_item .news_item_title {
  font-weight: 400;
  font-size: 20px;
  color: #505050;
  letter-spacing: 0;
  margin-right: 18px;
  line-height: 35px;
}

.news_item .news_item_icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  line-height: 20px;
}

.newsCenter_detail {}

.newsCenter_detail-img {
  margin-top: 30px;
}

.newsCenter_detail-img>img {
  margin-bottom: 10px;
}

.newsCenter_detail-img_tips {
  text-align: center;
  font-style: oblique;
}

.newsCenter_detail-section {
  margin-top: 40px;
  color: rgba(80, 80, 80, 1);
  font-size: 22px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  text-align: left;
  text-indent: 2em;
}

.newsCenter_detail-section2 {
  margin-top: 30px;
  color: rgba(80, 80, 80, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  text-align: left;
}

.newsCenter_detail-section-right {
  margin-top: 40px;
  color: rgba(80, 80, 80, 1);
  font-size: 22px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  text-align: right;
}
.newsCenter_detail-section-center {
  margin-top: 40px;
  color: rgba(80, 80, 80, 1);
  font-size: 32px;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: 0;
  text-align: center;
}


.news_link {
  text-align: center;
  padding-bottom: 10px;
  font-size: 26px;
}

.news_link a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.news_link a:hover {
  border-color: #ffc400;
  color: #ffc400;
}

/* ====================================
 * 1730px~
 * ※ 最大幅以上
 ==================================== */

@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

  body.open {
    width: 100%;
    height: 100vh;
    overflow: hidden !important;
  }

  body.open:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
  }

  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  }

  .footer {
    padding: 9.33333vw 9.33333vw 10.66667vw;
  }

  .footerlink--icp {
    display: inline-block;
    margin-left: 0;
  }

  .header__inner {
    padding: 22px 18px 20px;
  }

  .header__inner .menu-trigger-sp {
    padding: 0rem;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header__inner .menu-trigger-sp span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #1a2554;
    -webkit-transition: all .25s ease 0s;
    transition: all .25s ease 0s;
  }

  .header__inner .menu-trigger-sp.open span:nth-child(1) {
    -webkit-transform: rotateZ(-45deg) translate(-5.5px, 5.5px);
    transform: rotateZ(-45deg) translate(-5.5px, 5.5px);
  }

  .header__inner .menu-trigger-sp.open span:nth-child(2) {
    opacity: 0;
  }

  .header__inner .menu-trigger-sp.open span:nth-child(3) {
    -webkit-transform: rotateZ(45deg) translate(-5.5px, -5.5px);
    transform: rotateZ(45deg) translate(-5.5px, -5.5px);
  }

  .header .logo-img {
    width: calc((220 / 375) * 100vw);
  }

  .header .common-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9;
    padding-bottom: 70px;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    top: 40px;
    -webkit-transition: all .45s ease 50ms;
    transition: all .45s ease 50ms;
    opacity: 0;
    pointer-events: none;
  }

  .header .common-nav.open {
    top: 56px;
    opacity: 1;
    pointer-events: auto;
  }

  .header .common-nav li {
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .header .common-nav a {
    font-size: 28px;
    line-height: 60px;
    margin-right: 0;
  }

  .pc {
    display: none !important;
  }

  .btn:before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  .btn.-back {
    margin: 8vw auto;
  }

  .btn.-back svg path {
    stroke: #fff !important;
  }

  .btn.-back {
    color: #fff !important;
  }

  .businessSummary .businessSummary-content {
    padding: 0 0 0 20px;
  }

  .page .businessSummary .businessSummary-content {
    padding: 0 20px;
  }

  .businessSummary .businessSummary-content>p {
    padding-right: 20px;
  }

  .businessSummary .businessSummary-content-img {
    width: 100%;
    margin-bottom: 15px;
  }

  .businessSummary .businessSummary-content .spec-word.-empty {
    text-align: left;
  }

  .businessSummary .businessSummary-info {
    display: block;
    margin-top: 20px;
    padding: 50px 20px 33px;
  }

  .businessSummary .businessSummary-info .show-img {
    margin-right: 0;
    position: relative;
    text-align: center;
    width: 153px;
    margin: 0 auto 15px;
  }

  .businessSummary .businessSummary-info .show-img>img {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .businessSummary .businessSummary-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .businessSummary .businessSummary-info>div {
    display: block;
  }

  .businessSummary .businessSummary-info .businessSummary-info-first {
    margin-top: 40px;
  }

  .contents {
    padding: 0;
    margin-top: 60px;
  }

  .contents:first-of-type {
    margin-top: 0;
  }

  .contents.-center {
    padding: 0 20px;
  }

  .contents__inner {
    padding-left: 0;
  }

  .contents__title {
    padding: 20px;
  }

  .contents__title--text {
    font-size: 28px;
    padding-bottom: 40px;
  }

  .contents__lead {
    font-size: 30px;
    font-weight: 500;
  }

  .contents__body {
    margin-left: 0;
    padding: 0 20px;
  }

  .contents__body--spOnly {
    padding: 0 20px;
  }

  .contents__body2 {
    margin-left: 0;
    padding: 0 20px;
  }

  .contents__body2--spOnly {
    padding: 0 20px;
  }

  .footerInfo {
    margin: 40px 0;
  }

  .footerInfo .contents__inner {
    display: block;
  }

  .footerInfo .contents__inner>div {
    width: 100%;
    max-width: 100% !important;
    min-width: auto !important;
    margin: 20px 0 !important;
  }

  .footerInfo .contents__inner>div svg path {
    stroke: #fff;
  }

  .footerInfo .contents__inner>div h3 {
    font-size: 20px;
    position: relative;
  }

  .footerInfo .contents__inner>div h3 span {
    display: block;
    font-size: 14px;
    margin-left: 0;
  }

  .footerInfo .contents__inner>div>div {
    padding: 20px;
    color: #fff;
  }

  .info-list li {
    padding: 20px 5px 40px 5px;
  }

  .new-list {
    padding: 0 20px;
  }

  .new-list .new-category {
    margin-right: 0;
    display: block;
    margin-bottom: 3px;
  }

  .new-list .new-date {
    margin-right: 0;
    display: block;
    margin-bottom: 3px;
  }

  .page-header__inner {
    padding: 60px 20px 40px;
  }

  .page-header__inner--pt0 {
    padding-top: 0;
  }

  .page-header__title {
    font-size: 28px;
  }

  .page .main-contents {
    padding-top: 70px;
  }

  .page .contents {
    margin-top: 0;
    padding: 0;
  }

  .page__deco--philosophy {
    background: none;
  }

  .page__deco--philosophy .page-header__inner {
    padding-bottom: 0;
  }

  .page__deco--philosophy .contents__inner {
    background: url(/images/monsterball.png) no-repeat;
    background-size: 220px auto;
    background-position: right top;
    padding-top: 42px;
    padding-bottom: 100px;
  }

  .philosophy .contents__inner {
    padding: 0;
    background-size: 220px auto;
    background-position: right 70px;
    min-height: 380px;
  }

  .philosophy .philosophy-content h3 {
    font-size: 30px;
    font-weight: 500;
  }

  .page-404 .contents__inner {
    padding: 10.66667vw 0;
  }

  .page-404 .page-title {
    font-size: 10rem;
  }

  .mv {
    height: auto;
  }

  .mv__inner {
    padding: 70px 20px 0;
    display: block;
  }

  .mv__title {
    margin: 20px 0 10px;
  }

  .mv__title h2 .cn {
    font-size: 4rem;
  }

  .mv__title h2 .packing {
    letter-spacing: -20px;
  }

  .mv__title h2 .en {
    margin-top: 20px;
    font-size: 1.9rem;
  }

  .mv__img {
    max-width: 64vw;
    margin: 0 auto;
  }

  .mv .scrolldown {
    bottom: 80px;
    right: -7vw;
  }

  .thumbInfo {
    margin-bottom: 20px;
  }

  .thumbInfo .contents__inner>ul {
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .thumbInfo .contents__inner>ul>li:nth-child(1) {
    display: none;
  }

  .thumbInfo .contents__inner>ul>li>a>img {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    display: block;
  }

  .contents.news .contents__inner .news_item {
    position: relative;
    top: 0;
    border: 0;
  }

  .news_item {
    height: 93px;
    border-bottom: 1px solid #CFD3E3;
  }

  .news_item {
    padding-top: 0;
  }

  /* .news_item:nth-last-child(1) {
    border: 0;
  } */

  .news_item .news_item_banner {
    width: 100%;
    height: auto;
  }



  .news_item .news_item_time {
    font-weight: 500;
    font-size: 13px;
    color: #999999;
    letter-spacing: 0;
    margin-right: 25px;
    height: 46px;
    line-height: 23px;
  }

  .news_item .news_item_title {
    font-weight: 400;
    font-size: 13px;
    color: #505050;
    letter-spacing: 0;
    line-height: 23px;
    margin-right: 0;
    height: 46px;
  }

  .news_item .news_item_icon {
    width: 12px;
    height: 12px;
    vertical-align: middle;
  }

  .newsCenter_detail-section {
    font-size: 16px;
    line-height: 25.6px;
  }

  .news_link {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .header .common-nav a:hover:before {
    left: 0;
    right: auto;
    width: 100%;
  }

  .sp {
    display: none !important;
  }

  .btn.-inline {
    display: inline-block;
  }

  .philosophy .philosophy-content .btn {
    margin-top: 60px;
  }



}

@media (min-width: 1730px) {
  .mv__title h2 .cn {
    font-size: 12rem;
  }

  .mv__title h2 .en {
    font-size: 5.8rem;
  }
}